home *** CD-ROM | disk | FTP | other *** search
- { ********************************************************************************** }
- { }
- { COPYRIGHT 1997 Kevin Boylan }
- { Source File: IncZip.pas }
- { Description: VCLUnZip component demo - native Delphi unzip component. }
- { Date: March 1997 }
- { Author: Kevin Boylan, CIS: boylank }
- { Internet: boylank@compuserve.com }
- { }
- { ********************************************************************************** }
- unit IncZip;
-
- { $Log: }
-
- interface
-
- uses
- {$IFDEF WIN32}
- Windows,
- {$ELSE}
- WinTypes, WinProcs,
- {$ENDIF}
- SysUtils, Classes, Graphics, Forms, Controls, StdCtrls,
- Buttons, ExtCtrls;
-
- type
- TIncompleteZipDlg = class(TForm)
- OKBtn: TButton;
- CancelBtn: TButton;
- Bevel1: TBevel;
- Label1: TLabel;
- Label2: TLabel;
- Button1: TButton;
- procedure FormActivate(Sender: TObject);
- private
- { Private declarations }
- public
- { Public declarations }
- end;
-
- var
- IncompleteZipDlg: TIncompleteZipDlg;
-
- implementation
-
- {$R *.DFM}
-
- procedure TIncompleteZipDlg.FormActivate(Sender: TObject);
- begin
- MessageBeep(0);
- end;
-
-
- end.
-